Skip to main content

Quickstart

To jump right in you can start by creating a new project using the composer create-project command:

$ composer create-project forestcitylabs/framework-standard-install:dev-main fcl-framework

This will create a new project based on this repo in the fcl-framework folder on your machine.

You can then create a new .env file by copying the existing .env.dist file and immediately start a development environment using docker or podman.

$ cp .env.dist .env
$ docker compose up -d

Once your site is built and running it will be available at http://localhost:8080!

From here it is up to you to start building your site! A good place to start is the GraphQL documentation or the routing documentation.